dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleObject Class / ExecuteMethod Method / ExecuteMethod(OracleConnection,String,Object[]) Method
The connection to the Oracle database where the UDT used is declared.
The method to be invoked.
The list of input parameters passed to the method.

On this page
    ExecuteMethod(OracleConnection,String,Object[]) Method
    On this page
    Calls the method of an Oracle object with the specified set of parameters.
    Syntax
    'Declaration
     
    Public Overloads Sub ExecuteMethod( _
       ByVal connection As OracleConnection, _
       ByVal name As String, _
       ByVal ParamArray parameters() As Object _
    ) 
    public void ExecuteMethod( 
       OracleConnection connection,
       string name,
       params object[] parameters
    )

    Parameters

    connection
    The connection to the Oracle database where the UDT used is declared.
    name
    The method to be invoked.
    parameters
    The list of input parameters passed to the method.
    See Also